home *** CD-ROM | disk | FTP | other *** search
/ Voyager Presents CD-ROM's That Matter / Voyager Presents CD-ROM's That Matter.iso / pc / demos / gouldwin / gould.dir / 00063.ls < prev    next >
Encoding:
Text File  |  1994-11-09  |  647 b   |  46 lines

  1. on enterFrame
  2.   cursor(200)
  3. end
  4.  
  5. on waitQT chan
  6.   if the movieRate of sprite chan = 1 then
  7.     go(the frame)
  8.   end if
  9. end
  10.  
  11. on waitSound chan
  12.   if soundBusy(chan) = 1 then
  13.     go(the frame)
  14.   end if
  15. end
  16.  
  17. on myWait theTicks
  18.   set myTicks to theTicks + the ticks
  19.   repeat while myTicks >= the ticks
  20.   end repeat
  21. end
  22.  
  23. on startMovie
  24.   unLoadCast()
  25.   cursor(200)
  26. end
  27.  
  28. on QTvolume chan, theLevel
  29.   set the volume of sprite chan to theLevel
  30. end
  31.  
  32. on waiting theTicks
  33.   repeat while theTicks >= the timer
  34.     updateStage()
  35.   end repeat
  36. end
  37.  
  38. on keyDown
  39.   global autoPlaying
  40.   set autoPlaying to 0
  41.   sound stop 1
  42.   sound stop 2
  43.   unLoadCast()
  44.   play done
  45. end
  46.